
        
 /*Styles généraux */
/* Variables CSS pour les couleurs */
:root {
  --couleur-primaire-foncee: #45261d;
  --couleur-accent-marron: #8F543E;
  --couleur-texte-clair: #CE7650;
  --couleur-texte-sombre: #3B260E;
  --couleur-neutre-grise: #AFA099;
}

/* Réinitialisation de base */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Base de la typographie */
.revalia-regular {
  font-family: "Revalia", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat-regular { /* Remplacer par la classe générée par Google Fonts si différente */
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; /* Exemple, ajustez selon votre lien Google Fonts */
  font-style: normal;
}
/*site Buhanor*/
body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f5ee; /* Couleur de fond légèrement beige */
            color: #333;
        }

.montserrat-<uniquifier> {
  
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
 /* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Animation sur le défilement */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: 1s;
  transition-timing-function: ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
header {
    background-color: #45261d;
    color: white;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    left: 0px;
    right: 0px;
    background-color:  #A96668;
    
}

.navbar img{
  width: 100px; /* Taille du logo dans la nav */
  height: auto;
  margin-left: 10px; 
}
/* Liens de navigation */
.nav-links {
    list-style: none;
    margin: 5px 59px;
    padding: 0;
    display: flex; /* Affiche les liens côte à côte par défaut (grands écrans) */
    font-size: 1.2em;
    gap: 15px;
}

.nav-links li {
    margin-bottom: 0;
}
.nav-links a {
     font-family: "Revalia", sans-serif;
    color: white;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.5s ease;
}

.nav-links a:hover {
    color:  #f20089;
}

li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}
li:before {
    content: "•";
    color: #f20089;
    font-weight: bold;
    position: absolute;
    left: 0;
}
/* Menu Hamburger */
.hamburger-menu {
    display: none; /* Masqué par défaut sur les grands écrans */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative; /* Pour positionner les barres */
    z-index: 1000; /* Assurez-vous qu'il est au-dessus des autres éléments */
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* Styles pour le menu ouvert (JavaScript ajoute la classe .open) */
.hamburger-menu.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
} 


/* ===== Section Hero ===== */
.hero {
       background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('belle-plage-cap-skirring-rose.jpg');
    height: 400px;
    background-position: center;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    padding: 20px;
}

.hero h1 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.BU1 { /* Logo principal dans la section d'accueil */
  width: 10%;
  min-width: 100px; /* Taille minimale pour ne pas disparaître */
  max-width: 200px; /* Taille maximale */
  margin: -10px;
}
/* Petits points sous le titre */
.dots {
    margin-bottom: 20px;
}

.dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    margin: 0 4px;
}

.hero p {
    font-size: 1.1rem;
    font-weight: 300;
}
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Section CAP Skirring */
        .cap-skirring-section {
            display: flex;
            align-items: center;
            padding: 40px 0;
        }

        .cap-skirring-text {
            flex: 1;
            padding-right: 40px;
        }

        .cap-skirring-text h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #555;
        }

        .cap-skirring-text p {
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .cap-skirring-images {
            flex: 2;
            display: flex;
            gap: 15px;
        }

        .cap-skirring-images img {
            width: calc(33.333% - 10px); /* Trois images par ligne avec espacement */
            height: 200px; /* Hauteur fixe pour l'exemple */
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Section Plage Casamançaise */
        .plage-casamancaise-section {
            display: flex;
            flex-wrap: wrap; /* Permet aux éléments de passer à la ligne */
            padding: 40px 0;
            justify-content: space-between;
            align-items: flex-start; /* Alignement en haut pour le texte */
        }

        .plage-casamancaise-title {
            width: 100%; /* Le titre prend toute la largeur */
            font-size: 2.5em;
            margin-bottom: 30px;
            color: #555;
        }

        .plage-casamancaise-col {
            flex: 1;
            min-width: 300px; /* Largeur minimale pour les colonnes */
            margin-bottom: 20px;
        }

        .plage-casamancaise-col:first-of-type {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding-right: 20px;
        }

        .plage-casamancaise-col:last-of-type {
            padding-left: 20px;
        }

        .image-text-block {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .image-text-block img {
            width: 150px; /* Taille fixe pour les petites images */
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .text-content p {
            line-height: 1.6;
        }

        .image-full-width {
            width: 100%;
            height: 350px; /* Hauteur fixe pour la grande image */
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Styles pour les astérisques */
        .asterisk {
            font-size: 1.5em;
            vertical-align: super;
            line-height: 0;
            margin-left: 5px;
            color: #ff6600; /* Couleur orange pour l'astérisque */
        }

        /* Section Spectacle Coucher de Soleil */
        .sunset-section {
            display: flex;
            flex-wrap: wrap;
            padding: 40px 0;
            gap: 20px;
            align-items: flex-start;
        }

        .sunset-image-col {
            flex: 2;
            min-width: 300px;
        }

        .sunset-image-col img {
            width: 100%;
            height: 350px; /* Ajustez selon l'image */
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }


.sunset-text-col {
            flex: 1;
            min-width: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 20px;
        }

        .sunset-text-col blockquote {
            font-size: 1.8em;
            color: #555;
            font-style: italic;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .sunset-text-col p {
            font-size: 0.9em;
            color: #777;
            margin-bottom: 0;
        }

        .sunset-bottom-images {
            flex-basis: 100%;
            display: flex;
            gap: 20px;
            margin-top: 20px;
            justify-content: flex-start;
            flex-wrap: wrap; /* Pour la responsivité */
        }

        .sunset-bottom-images img {
            width: calc(50% - 10px);
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background-color: #f8f5ee; /* Assurez-vous que le fond reste le même */
            padding: 40px 0; /* Padding pour le contenu du footer */
            margin-top: 40px; /* Espace au-dessus du footer */
        }

        .footerr { 
            text-align: center; 
            padding: 2rem; 
            background-color: #A96668; 
            color: white; 
        } 

        /* Section Réservé maintenant (maintenant dans le footer) */
        .reserve-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            max-width: 1200px; /* Reprend la largeur du container */
            margin: 0 auto; /* Centre le contenu du footer */
            padding: 0 20px; /* Ajoute un padding interne pour les petits écrans */
        }

        .reserve-text-content {
            flex: 1;
            min-width: 300px;
            padding-right: 20px;
        }

        .reserve-text-content .number {
            font-size: 1.2em;
            font-weight: bold;
            color: #888;
            margin-bottom: 10px;
        }

        .reserve-text-content h2 {
            font-size: 3em;
            margin-bottom: 10px;
            line-height: 1.1;
            color: #333;
        }

        .reserve-text-content p {
            font-size: 1.8em;
            color: #555;
        }

        .reserve-image {
            flex: 1.5; /* Donne plus d'espace à l'image */
            min-width: 400px; /* Largeur minimale pour l'image */
        }

        .reserve-image img {
            width: 100%;
            height: 400px; /* Hauteur fixe pour l'image */
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .contact-info {
            flex: 1;
            min-width: 250px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding-left: 20px;
        }

        .contact-item {
            margin-bottom: 15px;
        }

        .contact-item .asterisk {
            font-size: 1.5em;
            vertical-align: super;
            line-height: 0;
            margin-right: 5px;
            color: #ff6600; /* Couleur orange pour l'astérisque */
        }

        .contact-item strong {
            display: block;
            font-size: 1.1em;
            margin-bottom: 5px;
            color: #333;
        }

        .contact-item span {
            color: #777;
            font-size: 0.9em;
        }

        .reach-out-button {
            background-color: #000;
            color: #fff;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
            width: fit-content; /* S'adapte au contenu */
            margin-top: 10px;
        }

        .reach-out-button:hover {
            background-color: #A96668;
        }
        .gallery-item {
            cursor: pointer;
           
        }
        /* Styles pour la Lightbox */
.lightbox {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Fond semi-transparent noir */
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain; /* L'image s'adapte sans être coupée */
}

.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    z-index: 1001;
}

.close-btn {
    top: 15px;
    right: 35px;
}

.close-btn:hover,
.close-btn:focus,
.prev-btn:hover,
.next-btn:hover {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev-btn {
    display: none;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.next-btn {
    display: none;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}


/* Media Queries pour la responsivité */
        @media (max-width: 900px) {
            .cap-skirring-section {
                flex-direction: column;
            }

            .cap-skirring-text {
                padding-right: 0;
                margin-bottom: 30px;
            }

            .cap-skirring-images {
                flex-wrap: wrap;
                justify-content: center;
            }

            .cap-skirring-images img {
                width: calc(50% - 10px); /* Deux images par ligne sur les écrans moyens */
                width: 200px ;
            }

            .plage-casamancaise-col {
                padding: 0 !important; /* Supprime le padding latéral */
            }

            .plage-casamancaise-col:first-of-type {
                padding-right: 0;
            }

            .plage-casamancaise-col:last-of-type {
                padding-left: 0;
            }

            .sunset-image-col, .sunset-text-col {
                min-width: unset; /* Supprime la min-width pour flexibilité */
                flex-basis: 100%; /* Prend toute la largeur */
                padding: 0;
            }

            .sunset-text-col {
                text-align: center;
                padding-top: 20px;
            }

            .sunset-text-col blockquote {
                font-size: 1.5em; /* Ajuste la taille de la police */
            }

            .sunset-bottom-images img {
                
                height: 130px;

            }

            /* Styles spécifiques au footer pour mobile */
            footer .reserve-section { /* Cibler la section à l'intérieur du footer */
                flex-direction: column;
                gap: 20px;
                padding: 0 20px; /* Assure un padding correct sur les petits écrans */
            }

            .reserve-text-content, .reserve-image, .contact-info {
                padding: 0;
                min-width: unset;
                flex-basis: 100%; /* Chaque section prend 100% de la largeur */
            }

            .reserve-image img {
                height: 300px; /* Hauteur ajustée pour mobile */
            }

            .contact-info {
                align-items: center; /* Centre les éléments de contact */
            }

            .reach-out-button {
                width: 90%;
            }
        }

        @media (max-width: 600px) {
            .cap-skirring-images img {
                width: 150px; /* Une image par ligne sur les petits écrans */
                height: 160px;
            }

            .plage-casamancaise-section {
                flex-direction: column;
            }

            .image-text-block {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .image-text-block img {
                margin-bottom: 10px;
            }

            .reserve-text-content h2 {
                font-size: 2.2em; /* Taille de titre plus petite pour mobile */
            }

            .reserve-text-content p {
                font-size: 1.3em;
            }
        }
    
    /* Media Queries pour les écrans plus petits */

@media (max-width: 1250px) {

     .cap-skirring-images img {
                height: 150px;
            }

    .nav-links{
        margin: 5px 40px;
        font-size: 1.2em;
    }
  }
/* Media Queries pour le menu hamburger */
@media (max-width: 999px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color:  #A96668;
        position: absolute;
        top: 70px; /* Ajustez selon la hauteur réelle de .navbar */
        right: 0;
        text-align: center;
        padding: 20px 0;
        font-size: 1.4em;
        z-index: 999;
        transform: translateX(100%);
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger-menu {
        display: block;
    }

    .brand-logo img {
        width: 120px;
    }
}

@media (max-width: 799px) {
    .nav-links {
        width: 35%;
        margin: 0;
        top: 70px;
        font-size: 1.2em;
    }

    .nav-links.active {
        display: flex;
        padding: 20px 0;
        MARGIN-TOP: -5%;
    }
    li {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .brand-logo img {
        width: 100px;
    }
}
